home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / tved12.zip / TVEDIT.DOC < prev    next >
Text File  |  1993-03-19  |  7KB  |  148 lines

  1. TurboEdit
  2. A free multi-windowed text editor
  3. version 1.2
  4.  
  5. Copyright (c) 1993 by Thomas A. Lundin.
  6. portions Copyright (c) 1991 by Borland International Inc.
  7. ALL RIGHTS RESERVED.
  8.  
  9. ------------------------------------------------------------------------
  10. DISCLAIMER NOTICE:
  11. This program is offered as-is, without any expressed or implied
  12. warranties. YOU USE IT AT YOUR OWN RISK. I am not liable for
  13. damages, whether direct or consequential, as a result of your
  14. use or misuse of this program. I do not represent this program
  15. to be anything more than what it is: a very simple text editor. 
  16. I don't claim that it will do what you want it to do, or even that 
  17. it will work correctly in all cases.
  18. ------------------------------------------------------------------------
  19.  
  20. Revision History
  21. 3/3/93  1.0 - First release
  22. 3/4/93  1.1 - Added command-line file loading
  23. 3/19/93 1.2 - Added variable-width tabs & auto-indent toggling
  24.               (Thanx and a tip of the hat to:
  25.                John L. Swartzentruber & Jeff A. Hottle of Primatech Inc.
  26.                for the variable-width tab changes)
  27.  
  28. ------------------------------------------------------------------------
  29.  
  30. What is TurboEdit?
  31.  
  32.      TurboEdit is a simple but useful FREE programming source code editor. 
  33. It allows multiple editing windows to be open simultaneously with full 
  34. resizing capabilities for each window. Mouse support is included, and block 
  35. operations can be performed using the mouse, or by Windows-compatible 
  36. keyboard operations. A straightforward search-and-replace capability is 
  37. also built in. Auto-indent is permanently enabled.
  38.  
  39.      Some special tools are provided in the editor. They are:
  40.  
  41.      1. An ASCII table.
  42.         Moving the cursor to a specific character in the table will display 
  43.         that character's hex and decimal code value. If you press any key 
  44.         while in the ASCII table (i.e., a normal key, control-key pair, or 
  45.         ALT-numeric sequence), your cursor will be placed on that character 
  46.         in the table, and its hex and decimal values displayed.
  47.  
  48.      2. A four-function calculator.
  49.         Selecting the calculator will bring up a four-function visual 
  50.         calculator for your computational convenience.
  51.  
  52.      3. A static time and date callout.
  53.         If you want to know what the time or date is, select the Time & 
  54.         Date function. A dialog box will appear with that information. 
  55.         NOTE: This box is _not_ programmed to continually update the time 
  56.         display. It is meant to offer a "glance at the clock" while you are 
  57.         editing.
  58.  
  59.      4. User-selectable color palettes.
  60.         The Color option allows you to change the color scheme of the 
  61.         program's various display items.
  62.  
  63.      Maximum editable file size is 64K. Maximum editable line length is 
  64. 256 characters. (If you're editing source code, you _won't_ need a line 
  65. length longer than this!)
  66.  
  67.      TurboEdit is written with Borland C++ version 3.1 and the Turbo Vision 
  68. for C++ Application Framework. The code is based upon the demo programs 
  69. supplied with the Application Frameworks.
  70.  
  71.      I put TurboEdit together because I think the world needs a FREE text 
  72. editor that basically "does the job". If you _can't_ live without macros, 
  73. multiple levels of UNDO, virtual file sizes or word wrap, then TurboEdit 
  74. isn't for you. If, on the other hand, you want an editing program that 
  75. performs most of the basic operations quite well, and you don't want to pay 
  76. anything for it, then here's your program. TurboEdit is no threat to BRIEF, 
  77. MULTI-EDIT, QEDIT or others of their ilk. It won't do any of the things 
  78. that make those editors valuable. It just edits or views text files of 
  79. average length with a minimum of fuss and bother. It's great for making 
  80. quick edits of your .BATch files or CONFIG.SYS files, or your Paradox PAL 
  81. source files, or C or Pascal programming language files. It makes a 
  82. dandy freebie editor to give to your customers if you're a consultant. 
  83. (Product plug: TurboEdit provides a fine environment to edit conversion 
  84. tables for my SNR program. SNR is shareware that performs multiple 
  85. simultaneous search and replace operations on disk files. Call me or 
  86. leave me an e-mail message on Compuserve [70523,262] if you want info 
  87. regarding SNR.)
  88.  
  89. How To Use TurboEdit
  90.  
  91.      At your command prompt, type:
  92.      
  93.      C:>TVEDIT (enter)  -or-
  94.      
  95.      C:>TVEDIT [drive:\pathname\wildcard] [filename] [\pathname] ...
  96.      
  97.      The TurboEdit desktop will appear on the screen. If you have specified 
  98. filenames on the command line (including those with paths and wildcards), 
  99. those files will be loaded and displayed right away. The number of files 
  100. that can be loaded at one time is limited to the amount of free memory left 
  101. to the editor. Each window takes up a minimum of 7K or so (even when 
  102. empty), so you probably can't load more than a couple of dozen of small 
  103. text files at one time. The program will crash if you end up loading too 
  104. many files from a wildcard specification.
  105.  
  106.      The top menu bar is accessible by using the mouse, or by pressing 
  107. ALT+the letter highlighted in red. Some file operations are further 
  108. accessible through the special keys shown on the bottom of the screen.
  109.  
  110.      Since this program is free, I've chosen not to produce a user manual 
  111. or tutorial for it. If this program intrigues you at all, you probably 
  112. already know how to use it, since it follows most of the Windows 
  113. conventions for selecting text and for block operations. An example: 
  114. Pressing the SHIFT key plus an arrow key will select (and highlight) all 
  115. text that your cursor travels over. Pressing and holding the left mouse 
  116. button does the same thing.
  117.  
  118.      You can resize windows by clicking on the lower right corner of the 
  119. window and dragging it to a new size, or you can use the Windows|Size/Move 
  120. menu option and move and resize it with the keyboard. (Press the ENTER key 
  121. when you are done with a keyboard move/size.) To move a window with the 
  122. mouse, click on the top of the window's frame and drag it to a new 
  123. location.
  124.  
  125. Where To Contact The Author
  126.  
  127.      Thomas A. Lundin
  128.      16267 Hudson Avenue
  129.      Lakeville, MN 55044
  130.  
  131.      daytime phone (612) 588-7571
  132.  
  133.      Compuserve I.D. [70523,262]
  134.  
  135.      TurboEdit is free. You are not required to pay for it. You may copy 
  136. and distribute it freely. Please include this file and the executable, 
  137. both in unaltered form. TurboEdit is not public-domain software, 
  138. however. I retain the copyright and the right to control subsequent 
  139. releases of the software. (If you _are_ moved to offer me monetary 
  140. compensations for the program, $10 is suitable and well-appreciated.) I 
  141. don't have the available time to make any requested changes to this 
  142. program, so I offer it on an AS-IS basis. If the fancy strikes me, I may 
  143. on occasion add some other embellishment to it.
  144.  
  145. I hope you enjoy TurboEdit. Please check out some of my other shareware 
  146. products if you get a chance.
  147.  
  148.